home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 32 / cursive.zip / MAKEFILE < prev    next >
Text File  |  1987-11-25  |  489b  |  24 lines

  1. CFLAGS = -g
  2.  
  3. cursive: cursive.o x.o xs.o
  4.     cc -g -o cursive cursive.o x.o xs.o
  5.  
  6. x.o: x.c
  7.  
  8. xs.o: xs.c
  9.  
  10. x.c: font.c
  11.     xstr font.c
  12.  
  13. xs.c: font.c
  14.     xstr font.c
  15.  
  16. # This is for use if you haven't got the xstr command.  The program works
  17. # the same, but is slightly bigger.
  18.  
  19. lcursive: cursive.o font.o
  20.     cc -g -o lcursive cursive.o font.o
  21.  
  22. cursive.shar: cursive.c font.c cursive.h cursive.6 Makefile shar
  23.     shar cursive.c font.c cursive.h cursive.6 Makefile shar > cursive.shar
  24.